
[dbo].[FinancialEntityGLAccount]
CREATE TABLE [dbo].[FinancialEntityGLAccount]
(
[FinancialEntityKey] [uniqueidentifier] NOT NULL,
[GLAccountKey] [uniqueidentifier] NOT NULL,
[GLAccountPurposeCode] [nchar] (3) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[FinancialEntityGLAccountKey] [uniqueidentifier] NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[FinancialEntityGLAccount] ADD CONSTRAINT [PK_FinancialEntityGLAccount] PRIMARY KEY CLUSTERED ([FinancialEntityGLAccountKey]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [IX_FinancialEntityGLAccount_1] ON [dbo].[FinancialEntityGLAccount] ([FinancialEntityKey]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [IX_FinancialEntityGLAccount] ON [dbo].[FinancialEntityGLAccount] ([GLAccountKey]) ON [PRIMARY]
GO